[Conditional("DEBUG")] 
public static void assert(bool condition) ...

to delete a particular version of an assembly
Gacutil -u DevelopMentor,Ver=1.0.343.21384


> Actually you can specify fixed size array's inside structs as follows:
>
> struct foo
> {
>         byte            len;
>         [MarshalAs(UnmanagedType.ByValArray), SizeConst = 255)]
>         byte[]  data;
> }


As of Beta1 you can use the "using"/IDisposable technique as proposed by
Brian Harry in his now-famous post.

You are correct; the Beta1 compiler doesn't implement it.

-----Original Message-----
From: Box, Don [mailto:dbox@DEVELOP.COM]
Sent: Monday, November 13, 2000 11:23 AM
To: DOTNET@DISCUSS.DEVELOP.COM
Subject: [DOTNET] using/IDisposable doc'ed but not implemented.


It shows up in section 8.13 in the C# language reference yet the compiler
doesn't support the syntax nor does MSCORLIB contain a System.IDisposable
type.

I tried running csc with the following flags:
        /df
        /dispose
        /noleak
        /chrissells
yet nothing happened.

Maybe Andrew Shullman will write "Unimplemented .NET" ;-)






